home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2207 / 2207.xpi / chrome / cooliris.jar / content / cooliris / cpvwSearch / coolirisSearch.xul < prev    next >
Extensible Markup Language  |  2010-01-05  |  2KB  |  47 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <?xml-stylesheet href="chrome://cooliris/skin/coolpreviews_search.css" type="text/css"?>
  4.  
  5. <window id="cpvw_window"
  6.  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  7.  xmlns:html="http://www.w3.org/1999/xhtml"
  8.  title=""
  9.  orient="vertical"
  10.  onload="cpvw_search.init();"
  11.  onunload="cpvw_search.unload();"
  12.  onresize="cpvw_search.changeSize();"
  13.  persist="width height screenX screenY sizemode">
  14.     
  15.     <script type="application/x-javascript" src="chrome://cooliris/content/utils.js"/>
  16.     <script type="application/x-javascript" src="chrome://cooliris/content/xmlhttpNew.js"/>
  17.     <script type="application/x-javascript" src="chrome://cooliris/content/cpvwSearch/coolirisSearch.js"/>
  18.  
  19.     <vbox flex="1">
  20.         <hbox flex="1">
  21.             <vbox id="outerBox" class="outerBox">
  22.                 <hbox>
  23.                     <label value="Google" class="link" onclick="cpvw_search.changeEngine('google')"/>
  24.                     <label value="Bing" class="link" onclick="cpvw_search.changeEngine('bing')"/>
  25.                     <label value="Yahoo" class="link" onclick="cpvw_search.changeEngine('yahoo')"/>
  26.                 </hbox>                
  27.                 <vbox flex="1" style="-moz-border-radius-topleft:10px;-moz-border-radius-bottomleft:10px;background-color:white;padding:5px;">
  28.                     <browser type="content" disablehistory="true" context="contentAreaContextMenu" flex="1" onload="cpvw_search.searchFrameLoad();" id="cpvw_searchFrame"/>
  29.                 </vbox>
  30.             </vbox>
  31.             <splitter style="width: 4px; max-width: 4px;" onmouseup="cpvw_search.stopResize()" onmousemove="cpvw_search.onResize();" onmousedown="cpvw_search.startResize()"
  32.              collapse="before" resizebefore="closest" resizeafter="farthest">
  33.                 <grippy id="leftgrippy"/>
  34.             </splitter>
  35.             
  36.             
  37.             <vbox id="remoteBox" flex="2">
  38.                 
  39.             </vbox>
  40.             
  41.         </hbox>
  42.         <vbox style="visibility:hidden;">
  43.             <browser type="content" disablehistory="true" flex="1" id="cpvw_scrollFrame" onload="cpvw_search.scrollFrameLoad();"/>
  44.         </vbox>
  45.     </vbox>
  46. </window>
  47.